DataCollection | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / ISupportRangeEditing<T> Interface / CanReplaceRange Method
The starting index of the item that would be replaced.
The items to be replaced.

In This Topic
    CanReplaceRange Method (ISupportRangeEditing<T>)
    In This Topic
    Determines whether the items starting at the specified startingIndex can be replaced in the collection.
    Syntax
    'Declaration
     
    Function CanReplaceRange( _
       ByVal startingIndex As Integer, _
       ByVal items As IEnumerable(Of T) _
    ) As Boolean
    bool CanReplaceRange( 
       int startingIndex,
       IEnumerable<T> items
    )

    Parameters

    startingIndex
    The starting index of the item that would be replaced.
    items
    The items to be replaced.
    See Also